home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1997 February / Computer Life February 1997.iso / INSTALL.BAT < prev    next >
DOS Batch File  |  1996-12-03  |  714b  |  53 lines

  1. echo off
  2.  
  3. if exist %1:\df1\cdidfile.jim goto start
  4.  
  5. echo To install f1 type 
  6. echo .
  7. echo install d
  8. echo .
  9. echo where d is letter of your CD drive
  10. echo NOTE there is no colon needed
  11. goto end
  12.  
  13. :start
  14. cls
  15. echo F1 Installation Menu
  16. echo .
  17. echo .
  18. echo .
  19. echo Install driver files to c:\f1demo from CD ( %1: ) [ Y / N ] ?
  20. echo ( About half a megabyte of space required )
  21.  
  22. choice /c:yn
  23.  
  24. if errorlevel 2 goto exit
  25.  
  26. :install
  27.  
  28. echo Installing files ...
  29.  
  30. md c:\f1demo
  31. copy df1\tof1demo\*.* c:\f1demo
  32. c:
  33. cd c:\f1demo
  34. setsound
  35. %1:
  36. rem cd %1:\
  37.  
  38. echo .
  39. echo .
  40. echo Installed OK
  41. echo .
  42. echo .
  43. echo .
  44. echo Type "f1" to play game
  45.  
  46. goto end
  47.  
  48.  
  49. :exit
  50. echo INSTALLATION ABORTED
  51.  
  52. :end
  53.